136. 只出现一次的数字
为保证权益,题目请参考 136. 只出现一次的数字(From LeetCode).
解决方案1
CPP
C++
/*
* LeetCode 136. 只出现一次的数字
* 应该这个题目的升级版本,原版本忘记保留了
* Author: Keven Ge
* Date: 2020-05-14
*/
#include <iostream>
#include <cmath>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <climits>
#include <vector>
#include <algorithm>
using namespace std;
bool cmp(int a, int b) {
int aa = a;
int bb = b;
int ai = 0;
int bi = 0;
while (a != 0) {
if (a & 1) {
ai++;
}
a = a >> 1;
}
while (b != 0) {
if (b & 1) {
bi++;
}
b = b >> 1;
}
if (ai != bi) {
return ai < bi;
} else {
return aa < bb;
}
}
class Solution {
public:
vector<int> sortByBits(vector<int> &arr) {
sort(arr.begin(), arr.end(), cmp);
return arr;
}
};
int main() {
cout << cmp (2, 1) << endl;
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54